/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #fff;
  color: #000;
  line-height: 1.6;
}



/* ================= HERO ================= */

.service-hero {

  min-height: 65vh;

  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)),
    url("../images/heroimage2.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  padding: 80px 20px;
}


.hero-content {
  max-width: 800px;
}


.service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}


.service-hero p {
  font-size: 18px;
  margin-bottom: 30px;
}


.hero-btn {

  display: inline-block;

  padding: 14px 34px;

  background: linear-gradient(135deg, #05a0ee, #0077cc);

  color: #fff;

  text-decoration: none;

  border-radius: 30px;

  font-weight: 700;

  transition: .3s;
}


.hero-btn:hover {
  transform: translateY(-3px);
  opacity: .9;
}



/* ================= CONTENT ================= */

.service-content {

  background: #f5f7ff;

  padding: 80px 20px;
}


.service-text {

  max-width: 900px;
  margin: auto;
}


.service-text h2 {

  font-size: 26px;
  margin: 35px 0 15px;
}


.service-text p {

  font-size: 16px;
  margin-bottom: 15px;
}


.service-text ul {

  margin: 15px 0 25px 20px;
}


.service-text li {

  margin-bottom: 10px;
}



/* ================= CTA ================= */

.service-cta {

  background: #fff;

  padding: 40px;

  border-radius: 15px;

  text-align: center;

  margin-top: 50px;

  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}


.service-cta h3 {
  font-size: 24px;
  margin-bottom: 10px;
}


.service-cta p {
  margin-bottom: 25px;
}


.cta-btn {

  display: inline-block;

  padding: 14px 32px;

  background: linear-gradient(135deg, #05a0ee, #0077cc);

  color: #fff;

  text-decoration: none;

  border-radius: 30px;

  font-weight: 700;

  transition: .3s;
}


.cta-btn:hover {
  transform: translateY(-3px);
}



/* ================= FOOTER ================= */

.footer {

  position: relative;

  background:
    url("../images/heroimage2.jpg") center/cover no-repeat;

  color: #fff;
}


.footer-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,.85);
}


.footer-container {

  position: relative;

  max-width: 1200px;

  margin: auto;

  padding: 70px 20px;

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 40px;
}


/* Brand */

.footer-brand img {
  width: 140px;
  margin-bottom: 15px;
}


/* Headings */

.footer h4 {
  margin-bottom: 15px;
  font-size: 18px;
}


/* Contact */

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
}


.footer-contact i {
  margin-right: 8px;
  color: #05a0ee;
}


/* Links */

.footer-links a {

  display: block;

  color: #ccc;

  text-decoration: none;

  margin-bottom: 8px;

  font-size: 14px;

  transition: .3s;
}


.footer-links a:hover {
  color: #05a0ee;
}


.syntax-brand{
  color: orange;
  font-weight: 600; /* optional */
}


/* Social */

.social-icons {

  display: flex;

  gap: 15px;

  margin-top: 10px;
}


.social-icons a {

  width: 40px;
  height: 40px;

  background: #05a0ee;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  transition: .3s;
}


.social-icons a:hover {
  background: #0077cc;
  transform: translateY(-3px);
}



/* Bottom */

.footer-bottom {

  position: relative;

  background: #000;

  text-align: center;

  padding: 20px;

  font-size: 14px;
}



/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

}


@media(max-width:600px){

  .service-hero h1{
    font-size:30px;
  }

  .service-hero p{
    font-size:16px;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

}
